[MNG-10928] Upgrade commons-lang3 to 3.18.0 (CVE-2025-48924) - #13082
Open
charangowdamd-cmd wants to merge 1 commit into
Open
[MNG-10928] Upgrade commons-lang3 to 3.18.0 (CVE-2025-48924)#13082charangowdamd-cmd wants to merge 1 commit into
charangowdamd-cmd wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Following this checklist to help us incorporate your contribution quickly and easily:
[MNG-XXX] SUMMARY.mvn clean verifyto make sure basic checks pass.Description
This PR upgrades
org.apache.commons:commons-lang3from3.8.1to3.18.0in themaven-3.8.xbranch to remediate CVE-2025-48924.Key Changes
<commonsLangVersion>from3.8.1to3.18.0in rootpom.xml.commons-lang3>= 3.9 targets Java 8 (class file version 52.0), which triggers theenforce-bytecode-versionenforcer check inmaven-3.8.x(<maxJdkVersion>1.7</maxJdkVersion>). We added an<exclude>org.apache.commons:commons-lang3</exclude>underenforceBytecodeVersionto whitelist the security-patched artifact without weakening bytecode checks for all other dependencies.animal-sniffer-maven-plugincontinues enforcing Java 1.7 API compatibility for all Maven source classes.Verification
mvn clean verifyacross all 15 reactor modules with success (0 errors, 0 test failures).